home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / xarchie-2.0.9 / configure < prev    next >
Text File  |  1995-06-18  |  17KB  |  570 lines

  1. #!/bin/sh
  2. # Guess values for system-dependent variables and create Makefiles.
  3. # Generated automatically using autoconf.
  4. # Copyright (C) 1991, 1992, 1993 Free Software Foundation, Inc.
  5.  
  6. # This program is free software; you can redistribute it and/or modify
  7. # it under the terms of the GNU General Public License as published by
  8. # the Free Software Foundation; either version 2, or (at your option)
  9. # any later version.
  10.  
  11. # This program is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. # GNU General Public License for more details.
  15.  
  16. # You should have received a copy of the GNU General Public License
  17. # along with this program; if not, write to the Free Software
  18. # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  
  20. # Usage: configure [--srcdir=DIR] [--host=HOST] [--gas] [--nfp] [--no-create]
  21. #        [--prefix=PREFIX] [--exec-prefix=PREFIX] [--with-PACKAGE] [TARGET]
  22. # Ignores all args except --srcdir, --prefix, --exec-prefix, --no-create, and
  23. # --with-PACKAGE unless this script has special code to handle it.
  24.  
  25.  
  26. for arg
  27. do
  28.   # Handle --exec-prefix with a space before the argument.
  29.   if test x$next_exec_prefix = xyes; then exec_prefix=$arg; next_exec_prefix=
  30.   # Handle --host with a space before the argument.
  31.   elif test x$next_host = xyes; then next_host=
  32.   # Handle --prefix with a space before the argument.
  33.   elif test x$next_prefix = xyes; then prefix=$arg; next_prefix=
  34.   # Handle --srcdir with a space before the argument.
  35.   elif test x$next_srcdir = xyes; then srcdir=$arg; next_srcdir=
  36.   else
  37.     case $arg in
  38.      # For backward compatibility, also recognize exact --exec_prefix.
  39.      -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* | --exec=* | --exe=* | --ex=* | --e=*)
  40.     exec_prefix=`echo $arg | sed 's/[-a-z_]*=//'` ;;
  41.      -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- | --exec | --exe | --ex | --e)
  42.     next_exec_prefix=yes ;;
  43.  
  44.      -gas | --gas | --ga | --g) ;;
  45.  
  46.      -host=* | --host=* | --hos=* | --ho=* | --h=*) ;;
  47.      -host | --host | --hos | --ho | --h)
  48.     next_host=yes ;;
  49.  
  50.      -nfp | --nfp | --nf) ;;
  51.  
  52.      -no-create | --no-create | --no-creat | --no-crea | --no-cre | --no-cr | --no-c | --no- | --no)
  53.         no_create=1 ;;
  54.  
  55.      -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
  56.     prefix=`echo $arg | sed 's/[-a-z_]*=//'` ;;
  57.      -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
  58.     next_prefix=yes ;;
  59.  
  60.      -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=* | --s=*)
  61.     srcdir=`echo $arg | sed 's/[-a-z_]*=//'` ;;
  62.      -srcdir | --srcdir | --srcdi | --srcd | --src | --sr | --s)
  63.     next_srcdir=yes ;;
  64.  
  65.      -with-* | --with-*)
  66.        package=`echo $arg|sed 's/-*with-//'`
  67.        # Delete all the valid chars; see if any are left.
  68.        if test -n "`echo $package|sed 's/[-a-zA-Z0-9_]*//g'`"; then
  69.          echo "configure: $package: invalid package name" >&2; exit 1
  70.        fi
  71.        eval "with_`echo $package|sed s/-/_/g`=1" ;;
  72.  
  73.      *) ;;
  74.     esac
  75.   fi
  76. done
  77.  
  78. trap 'rm -f conftest* core; exit 1' 1 3 15
  79.  
  80. rm -f conftest*
  81. compile='${CC-cc} $DEFS conftest.c -o conftest $LIBS >/dev/null 2>&1'
  82.  
  83. # A filename unique to this package, relative to the directory that
  84. # configure is in, which we can look for to find out if srcdir is correct.
  85. unique_file=xarchie.c
  86.  
  87. # Find the source files, if location was not specified.
  88. if test -z "$srcdir"; then
  89.   srcdirdefaulted=yes
  90.   # Try the directory containing this script, then `..'.
  91.   prog=$0
  92.   confdir=`echo $prog|sed 's%/[^/][^/]*$%%'`
  93.   test "X$confdir" = "X$prog" && confdir=.
  94.   srcdir=$confdir
  95.   if test ! -r $srcdir/$unique_file; then
  96.     srcdir=..
  97.   fi
  98. fi
  99. if test ! -r $srcdir/$unique_file; then
  100.   if test x$srcdirdefaulted = xyes; then
  101.     echo "configure: Can not find sources in \`${confdir}' or \`..'." 1>&2
  102.   else
  103.     echo "configure: Can not find sources in \`${srcdir}'." 1>&2
  104.   fi
  105.   exit 1
  106. fi
  107. # Preserve a srcdir of `.' to avoid automounter screwups with pwd.
  108. # But we can't avoid them for `..', to make subdirectories work.
  109. case $srcdir in
  110.   .|/*|~*) ;;
  111.   *) srcdir=`cd $srcdir; pwd` ;; # Make relative path absolute.
  112. esac
  113.  
  114.  
  115. if test -z "$CC"; then
  116.   echo checking for gcc
  117.   saveifs="$IFS"; IFS="${IFS}:"
  118.   for dir in $PATH; do
  119.     test -z "$dir" && dir=.
  120.     if test -f $dir/gcc; then
  121.       CC="gcc"
  122.       break
  123.     fi
  124.   done
  125.   IFS="$saveifs"
  126. fi
  127. test -z "$CC" && CC="cc"
  128.  
  129. # Find out if we are using GNU C, under whatever name.
  130. cat > conftest.c <<EOF
  131. #ifdef __GNUC__
  132.   yes
  133. #endif
  134. EOF
  135. ${CC-cc} -E conftest.c > conftest.out 2>&1
  136. if egrep yes conftest.out >/dev/null 2>&1; then
  137.   GCC=1 # For later tests.
  138. fi
  139. rm -f conftest*
  140.  
  141. echo checking how to run the C preprocessor
  142. if test -z "$CPP"; then
  143.   CPP='${CC-cc} -E'
  144.   cat > conftest.c <<EOF
  145. #include <stdio.h>
  146. EOF
  147. err=`eval "$CPP $DEFS conftest.c 2>&1 >/dev/null"`
  148. if test -z "$err"; then
  149.   :
  150. else
  151.   CPP=/lib/cpp
  152. fi
  153. rm -f conftest*
  154. fi
  155.  
  156. if test -n "$GCC"; then
  157.   echo checking whether -traditional is needed
  158.   pattern="Autoconf.*'x'"
  159.   prog='#include <sgtty.h>
  160. Autoconf TIOCGETP'
  161.   cat > conftest.c <<EOF
  162. $prog
  163. EOF
  164. eval "$CPP $DEFS conftest.c > conftest.out 2>&1"
  165. if egrep "$pattern" conftest.out >/dev/null 2>&1; then
  166.   need_trad=1
  167. fi
  168. rm -f conftest*
  169.  
  170.  
  171.   if test -z "$need_trad"; then
  172.     prog='#include <termio.h>
  173. Autoconf TCGETA'
  174.     cat > conftest.c <<EOF
  175. $prog
  176. EOF
  177. eval "$CPP $DEFS conftest.c > conftest.out 2>&1"
  178. if egrep "$pattern" conftest.out >/dev/null 2>&1; then
  179.   need_trad=1
  180. fi
  181. rm -f conftest*
  182.  
  183.   fi
  184.   test -n "$need_trad" && CC="$CC -traditional"
  185. fi
  186.  
  187. echo checking for POSIXized ISC
  188. if test -d /etc/conf/kconfig.d &&
  189.   grep _POSIX_VERSION /usr/include/sys/unistd.h >/dev/null 2>&1
  190. then
  191.   ISC=1 # If later tests want to check for ISC.
  192.   DEFS="$DEFS -D_POSIX_SOURCE=1"
  193. SEDDEFS="${SEDDEFS}\${SEDdA}_POSIX_SOURCE\${SEDdB}_POSIX_SOURCE\${SEDdC}1\${SEDdD}
  194. \${SEDuA}_POSIX_SOURCE\${SEDuB}_POSIX_SOURCE\${SEDuC}1\${SEDuD}
  195. \${SEDeA}_POSIX_SOURCE\${SEDeB}_POSIX_SOURCE\${SEDeC}1\${SEDeD}
  196. "
  197.   if test -n "$GCC"; then
  198.     CC="$CC -posix"
  199.   else
  200.     CC="$CC -Xp"
  201.   fi
  202. fi
  203.  
  204. echo checking for IRIX libsun
  205. if test -f /usr/lib/libsun.a; then
  206.   LIBS="$LIBS -lsun"
  207. fi
  208.  
  209. echo checking for ANSI C header files
  210. cat > conftest.c <<EOF
  211. #include <stdlib.h>
  212. #include <stdarg.h>
  213. #include <string.h>
  214. #include <float.h>
  215. EOF
  216. err=`eval "$CPP $DEFS conftest.c 2>&1 >/dev/null"`
  217. if test -z "$err"; then
  218.   # SunOS string.h does not declare mem*, contrary to ANSI.
  219. echo '#include <string.h>' > conftest.c
  220. eval "$CPP $DEFS conftest.c > conftest.out 2>&1"
  221. if egrep "memchr" conftest.out >/dev/null 2>&1; then
  222.   # SGI's /bin/cc from Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
  223. cat > conftest.c <<EOF
  224. #include <ctype.h>
  225. #define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
  226. #define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
  227. #define XOR(e,f) (((e) && !(f)) || (!(e) && (f)))
  228. int main () { int i; for (i = 0; i < 256; i++)
  229. if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) exit(2);
  230. exit (0); }
  231.  
  232. EOF
  233. eval $compile
  234. if test -s conftest && (./conftest; exit) 2>/dev/null; then
  235.   DEFS="$DEFS -DSTDC_HEADERS=1"
  236. SEDDEFS="${SEDDEFS}\${SEDdA}STDC_HEADERS\${SEDdB}STDC_HEADERS\${SEDdC}1\${SEDdD}
  237. \${SEDuA}STDC_HEADERS\${SEDuB}STDC_HEADERS\${SEDuC}1\${SEDuD}
  238. \${SEDeA}STDC_HEADERS\${SEDeB}STDC_HEADERS\${SEDeC}1\${SEDeD}
  239. "
  240. fi
  241. rm -f conftest*
  242. fi
  243. rm -f conftest*
  244.  
  245. fi
  246. rm -f conftest*
  247.  
  248. for hdr in string.h memory.h sys/param.h
  249. do
  250. trhdr=HAVE_`echo $hdr | tr '[a-z]./' '[A-Z]__'`
  251. echo checking for ${hdr}
  252. cat > conftest.c <<EOF
  253. #include <${hdr}>
  254. EOF
  255. err=`eval "$CPP $DEFS conftest.c 2>&1 >/dev/null"`
  256. if test -z "$err"; then
  257.   DEFS="$DEFS -D${trhdr}=1"
  258. SEDDEFS="${SEDDEFS}\${SEDdA}${trhdr}\${SEDdB}${trhdr}\${SEDdC}1\${SEDdD}
  259. \${SEDuA}${trhdr}\${SEDuB}${trhdr}\${SEDuC}1\${SEDuD}
  260. \${SEDeA}${trhdr}\${SEDeB}${trhdr}\${SEDeC}1\${SEDeD}
  261. "
  262. fi
  263. rm -f conftest*
  264. done
  265.  
  266. echo checking for fd_set in sys/types.h
  267. cat > conftest.c <<EOF
  268. #include <stdio.h>
  269. #include <sys/types.h>
  270. main() { exit(0); } 
  271. t() { fd_set foo; }
  272. EOF
  273. if eval $compile; then
  274.   DEFS="$DEFS -DFD_SET_IN_SYS_TYPES_H=1"
  275. SEDDEFS="${SEDDEFS}\${SEDdA}FD_SET_IN_SYS_TYPES_H\${SEDdB}FD_SET_IN_SYS_TYPES_H\${SEDdC}1\${SEDdD}
  276. \${SEDuA}FD_SET_IN_SYS_TYPES_H\${SEDuB}FD_SET_IN_SYS_TYPES_H\${SEDuC}1\${SEDuD}
  277. \${SEDeA}FD_SET_IN_SYS_TYPES_H\${SEDeB}FD_SET_IN_SYS_TYPES_H\${SEDeC}1\${SEDeD}
  278. "
  279. else
  280.   echo checking for fd_set in sys/select.h
  281. cat > conftest.c <<EOF
  282. #include <stdio.h>
  283. #include <sys/select.h>
  284. main() { exit(0); } 
  285. t() { fd_set foo; }
  286. EOF
  287. if eval $compile; then
  288.   DEFS="$DEFS -DFD_SET_IN_SYS_SELECT_H=1"
  289. SEDDEFS="${SEDDEFS}\${SEDdA}FD_SET_IN_SYS_SELECT_H\${SEDdB}FD_SET_IN_SYS_SELECT_H\${SEDdC}1\${SEDdD}
  290. \${SEDuA}FD_SET_IN_SYS_SELECT_H\${SEDuB}FD_SET_IN_SYS_SELECT_H\${SEDuC}1\${SEDuD}
  291. \${SEDeA}FD_SET_IN_SYS_SELECT_H\${SEDeB}FD_SET_IN_SYS_SELECT_H\${SEDeC}1\${SEDeD}
  292. "
  293. else
  294.   echo checking for fd_set in sys/inet.h
  295. cat > conftest.c <<EOF
  296. #include <stdio.h>
  297. #include <sys/inet.h>
  298. main() { exit(0); } 
  299. t() { fd_set foo; }
  300. EOF
  301. if eval $compile; then
  302.   DEFS="$DEFS -DFD_SET_IN_SYS_INET_H=1"
  303. SEDDEFS="${SEDDEFS}\${SEDdA}FD_SET_IN_SYS_INET_H\${SEDdB}FD_SET_IN_SYS_INET_H\${SEDdC}1\${SEDdD}
  304. \${SEDuA}FD_SET_IN_SYS_INET_H\${SEDuB}FD_SET_IN_SYS_INET_H\${SEDuC}1\${SEDuD}
  305. \${SEDeA}FD_SET_IN_SYS_INET_H\${SEDeB}FD_SET_IN_SYS_INET_H\${SEDeC}1\${SEDeD}
  306. "
  307. fi
  308. rm -f conftest*
  309.  
  310. fi
  311. rm -f conftest*
  312.  
  313. fi
  314. rm -f conftest*
  315.  
  316. echo checking for struct tm in time.h
  317. cat > conftest.c <<EOF
  318. #include <sys/types.h>
  319. #include <time.h>
  320. main() { exit(0); } 
  321. t() { struct tm *tp; }
  322. EOF
  323. if eval $compile; then
  324.   :
  325. else
  326.   DEFS="$DEFS -DTM_IN_SYS_TIME=1"
  327. SEDDEFS="${SEDDEFS}\${SEDdA}TM_IN_SYS_TIME\${SEDdB}TM_IN_SYS_TIME\${SEDdC}1\${SEDdD}
  328. \${SEDuA}TM_IN_SYS_TIME\${SEDuB}TM_IN_SYS_TIME\${SEDuC}1\${SEDuD}
  329. \${SEDeA}TM_IN_SYS_TIME\${SEDeB}TM_IN_SYS_TIME\${SEDeC}1\${SEDeD}
  330. "
  331. fi
  332. rm -f conftest*
  333.  
  334. for func in re_comp regcmp strcasecmp random rand strerror getlogin getpwuid
  335. do
  336. trfunc=HAVE_`echo $func | tr '[a-z]' '[A-Z]'`
  337. echo checking for ${func}
  338. cat > conftest.c <<EOF
  339. #include <stdio.h>
  340. main() { exit(0); } 
  341. t() { 
  342. #ifdef __stub_${func}
  343. choke me
  344. #else
  345. /* Override any gcc2 internal prototype to avoid an error.  */
  346. extern char ${func}(); ${func}();
  347. #endif
  348.  }
  349. EOF
  350. if eval $compile; then
  351.   DEFS="$DEFS -D${trfunc}=1"
  352. SEDDEFS="${SEDDEFS}\${SEDdA}${trfunc}\${SEDdB}${trfunc}\${SEDdC}1\${SEDdD}
  353. \${SEDuA}${trfunc}\${SEDuB}${trfunc}\${SEDuC}1\${SEDuD}
  354. \${SEDeA}${trfunc}\${SEDeB}${trfunc}\${SEDeC}1\${SEDeD}
  355. "
  356. fi
  357. rm -f conftest*
  358. #endif
  359. done
  360.  
  361. for func in strspn
  362. do
  363. trfunc=HAVE_`echo $func | tr '[a-z]' '[A-Z]'`
  364. echo checking for ${func}
  365. cat > conftest.c <<EOF
  366. #include <stdio.h>
  367. main() { exit(0); } 
  368. t() { 
  369. #ifdef __stub_${func}
  370. choke me
  371. #else
  372. /* Override any gcc2 internal prototype to avoid an error.  */
  373. extern char ${func}(); ${func}();
  374. #endif
  375.  }
  376. EOF
  377. if eval $compile; then
  378.   DEFS="$DEFS -D${trfunc}=1"
  379. SEDDEFS="${SEDDEFS}\${SEDdA}${trfunc}\${SEDdB}${trfunc}\${SEDdC}1\${SEDdD}
  380. \${SEDuA}${trfunc}\${SEDuB}${trfunc}\${SEDuC}1\${SEDuD}
  381. \${SEDeA}${trfunc}\${SEDeB}${trfunc}\${SEDeC}1\${SEDeD}
  382. "
  383. fi
  384. rm -f conftest*
  385. #endif
  386. done
  387.  
  388. echo checking for errno
  389. cat > conftest.c <<EOF
  390.  
  391. main() { exit(0); } 
  392. t() { extern int errno; int i=errno; }
  393. EOF
  394. if eval $compile; then
  395.   DEFS="$DEFS -DHAVE_ERRNO=1"
  396. SEDDEFS="${SEDDEFS}\${SEDdA}HAVE_ERRNO\${SEDdB}HAVE_ERRNO\${SEDdC}1\${SEDdD}
  397. \${SEDuA}HAVE_ERRNO\${SEDuB}HAVE_ERRNO\${SEDuC}1\${SEDuD}
  398. \${SEDeA}HAVE_ERRNO\${SEDeB}HAVE_ERRNO\${SEDeC}1\${SEDeD}
  399. "
  400. fi
  401. rm -f conftest*
  402.  
  403. echo checking for sys_errlist
  404. cat > conftest.c <<EOF
  405.  
  406. main() { exit(0); } 
  407. t() { extern char **sys_errlist; char *s=*sys_errlist; }
  408. EOF
  409. if eval $compile; then
  410.   DEFS="$DEFS -DHAVE_SYS_ERRLIST=1"
  411. SEDDEFS="${SEDDEFS}\${SEDdA}HAVE_SYS_ERRLIST\${SEDdB}HAVE_SYS_ERRLIST\${SEDdC}1\${SEDdD}
  412. \${SEDuA}HAVE_SYS_ERRLIST\${SEDuB}HAVE_SYS_ERRLIST\${SEDuC}1\${SEDuD}
  413. \${SEDeA}HAVE_SYS_ERRLIST\${SEDeB}HAVE_SYS_ERRLIST\${SEDeC}1\${SEDeD}
  414. "
  415. fi
  416. rm -f conftest*
  417.  
  418. echo checking whether -lresolv is needed
  419. cat > conftest.c <<EOF
  420. #include "resolv.c"
  421. EOF
  422. eval $compile
  423. if test -s conftest && (./conftest; exit) 2>/dev/null; then
  424.   :
  425. else
  426.   DEFS="$DEFS -DNEED_LRESOLV=1"
  427. SEDDEFS="${SEDDEFS}\${SEDdA}NEED_LRESOLV\${SEDdB}NEED_LRESOLV\${SEDdC}1\${SEDdD}
  428. \${SEDuA}NEED_LRESOLV\${SEDuB}NEED_LRESOLV\${SEDuC}1\${SEDuD}
  429. \${SEDeA}NEED_LRESOLV\${SEDeB}NEED_LRESOLV\${SEDeC}1\${SEDeD}
  430. "
  431. fi
  432. rm -f conftest*
  433. if test -n "$prefix"; then
  434.   test -z "$exec_prefix" && exec_prefix='${prefix}'
  435.   prsub="s%^prefix\\([     ]*\\)=\\([     ]*\\).*$%prefix\\1=\\2$prefix%"
  436. fi
  437. if test -n "$exec_prefix"; then
  438.   prsub="$prsub
  439. s%^exec_prefix\\([     ]*\\)=\\([     ]*\\).*$%\
  440. exec_prefix\\1=\\2$exec_prefix%"
  441. fi
  442.  
  443. trap 'rm -f config.status; exit 1' 1 3 15
  444. echo creating config.status
  445. rm -f config.status
  446. cat > config.status <<EOF
  447. #!/bin/sh
  448. # Generated automatically by configure.
  449. # Run this file to recreate the current configuration.
  450. # This directory was configured as follows,
  451. # on host `(hostname || uname -n) 2>/dev/null`:
  452. #
  453. # $0 $*
  454.  
  455. for arg
  456. do
  457.   case "\$arg" in
  458.     -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
  459.     exec /bin/sh $0 $* ;;
  460.     *) echo "Usage: config.status --recheck" 2>&1; exit 1 ;;
  461.   esac
  462. done
  463.  
  464. trap 'rm -f  config.h conftest*; exit 1' 1 3 15
  465. CC='$CC'
  466. CPP='$CPP'
  467. FD_SET_IN_SYS_TYPES_H='$FD_SET_IN_SYS_TYPES_H'
  468. FD_SET_IN_SYS_SELECT_H='$FD_SET_IN_SYS_SELECT_H'
  469. FD_SET_IN_SYS_INET_H='$FD_SET_IN_SYS_INET_H'
  470. HAVE_ERRNO='$HAVE_ERRNO'
  471. HAVE_SYS_ERRLIST='$HAVE_SYS_ERRLIST'
  472. NEED_LRESOLV='$NEED_LRESOLV'
  473. LIBS='$LIBS'
  474. srcdir='$srcdir'
  475. prefix='$prefix'
  476. exec_prefix='$exec_prefix'
  477. prsub='$prsub'
  478. EOF
  479. cat >> config.status <<\EOF
  480.  
  481. top_srcdir=$srcdir
  482. for file in .. ; do if [ "x$file" != "x.." ]; then
  483.   srcdir=$top_srcdir
  484.   # Remove last slash and all that follows it.  Not all systems have dirname.
  485.   dir=`echo $file|sed 's%/[^/][^/]*$%%'`
  486.   if test "$dir" != "$file"; then
  487.     test "$top_srcdir" != . && srcdir=$top_srcdir/$dir
  488.     test ! -d $dir && mkdir $dir
  489.   fi
  490.   echo creating $file
  491.   rm -f $file
  492.   echo "# Generated automatically from `echo $file|sed 's|.*/||'`.in by configure." > $file
  493.   sed -e "
  494. $prsub
  495. s%@CC@%$CC%g
  496. s%@CPP@%$CPP%g
  497. s%@FD_SET_IN_SYS_TYPES_H@%$FD_SET_IN_SYS_TYPES_H%g
  498. s%@FD_SET_IN_SYS_SELECT_H@%$FD_SET_IN_SYS_SELECT_H%g
  499. s%@FD_SET_IN_SYS_INET_H@%$FD_SET_IN_SYS_INET_H%g
  500. s%@HAVE_ERRNO@%$HAVE_ERRNO%g
  501. s%@HAVE_SYS_ERRLIST@%$HAVE_SYS_ERRLIST%g
  502. s%@NEED_LRESOLV@%$NEED_LRESOLV%g
  503. s%@LIBS@%$LIBS%g
  504. s%@srcdir@%$srcdir%g
  505. s%@DEFS@%-DHAVE_CONFIG_H%" $top_srcdir/${file}.in >> $file
  506. fi; done
  507.  
  508. echo creating config.h
  509. # These sed commands are put into SEDDEFS when defining a macro.
  510. # They are broken into pieces to make the sed script easier to manage.
  511. # They are passed to sed as "A NAME B NAME C VALUE D", where NAME
  512. # is the cpp macro being defined and VALUE is the value it is being given.
  513. # Each defining turns into a single global substitution command.
  514. #
  515. # SEDd sets the value in "#define NAME VALUE" lines.
  516. SEDdA='s@^\([     ]*\)#\([     ]*define[     ][     ]*\)'
  517. SEDdB='\([     ][     ]*\)[^     ]*@\1#\2'
  518. SEDdC='\3'
  519. SEDdD='@g'
  520. # SEDu turns "#undef NAME" with trailing blanks into "#define NAME VALUE".
  521. SEDuA='s@^\([     ]*\)#\([     ]*\)undef\([     ][     ]*\)'
  522. SEDuB='\([     ]\)@\1#\2define\3'
  523. SEDuC=' '
  524. SEDuD='\4@g'
  525. # SEDe turns "#undef NAME" without trailing blanks into "#define NAME VALUE".
  526. SEDeA='s@^\([     ]*\)#\([     ]*\)undef\([     ][     ]*\)'
  527. SEDeB='$@\1#\2define\3'
  528. SEDeC=' '
  529. SEDeD='@g'
  530. rm -f conftest.sed
  531. cat > conftest.sed <<CONFEOF
  532. EOF
  533. # Turn off quoting long enough to insert the sed commands.
  534. cat >> config.status <<EOF
  535. $SEDDEFS
  536. EOF
  537. cat >> config.status <<\EOF
  538. CONFEOF
  539. rm -f conftest.h
  540. # Break up the sed commands because old seds have small limits.
  541. cp $top_srcdir/config.h.in conftest.h1
  542. while :
  543. do
  544.   lines=`grep -c . conftest.sed`
  545.   if test -z "$lines" || test "$lines" -eq 0; then break; fi
  546.   rm -f conftest.s1 conftest.s2 conftest.h2
  547.   sed 40q conftest.sed > conftest.s1 # Like head -40.
  548.   sed 1,40d conftest.sed > conftest.s2 # Like tail +41.
  549.   sed -f conftest.s1 < conftest.h1 > conftest.h2
  550.   rm -f conftest.s1 conftest.h1 conftest.sed
  551.   mv conftest.h2 conftest.h1
  552.   mv conftest.s2 conftest.sed
  553. done
  554. rm -f conftest.sed conftest.h
  555. echo "/* config.h.  Generated automatically by configure.  */" > conftest.h
  556. cat conftest.h1 >> conftest.h
  557. rm -f conftest.h1
  558. if cmp -s config.h conftest.h 2>/dev/null; then
  559.   # The file exists and we would not be changing it.
  560.   rm -f conftest.h
  561. else
  562.   rm -f config.h
  563.   mv conftest.h config.h
  564. fi
  565.  
  566. EOF
  567. chmod +x config.status
  568. test -n "$no_create" || ./config.status
  569.  
  570.